home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1996 March / EnigmA AMIGA RUN 05 (1996)(G.R. Edizioni)(IT)[!][issue 1996-03][Skylink CD IV].iso / earcd / program / mui32dev.lha / MUI / Developer / C / DLib / MakeObj.c < prev    next >
C/C++ Source or Header  |  1994-05-14  |  219b  |  11 lines

  1. #include <clib/muimaster_protos.h>
  2. #include <pragmas/muimaster_pragmas.h>
  3.  
  4. extern struct Library *MUIMasterBase;
  5.  
  6. Object *MUI_MakeObject(LONG type, ...)
  7. {
  8.     return(MUI_MakeObjectA(type, (ULONG *)(((ULONG)&type)+4)));
  9. }
  10.  
  11.